home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950726-19950929 / 000216_news@columbia.edu_Thu Aug 24 13:32:09 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA29699
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 24 Aug 1995 09:32:16 -0400
  3. Received: by apakabar.cc.columbia.edu id AA06670
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 24 Aug 1995 09:32:14 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Help, can't use 'kermit -l file_descriptor'
  9. Date: 24 Aug 1995 13:32:09 GMT
  10. Organization: Columbia University
  11. Lines: 30
  12. Message-Id: <41hv0p$6gc@apakabar.cc.columbia.edu>
  13. References: <DDsBoM.KrJ@in.rhein-main.de>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <DDsBoM.KrJ@in.rhein-main.de>,
  18. Winfried Koenig <win@in.rhein-main.de> wrote:
  19. : I use C-Kermit cku190 compiled with "make unixwarenetc" and want to
  20. : start kermit with an open file descriptor. If I use
  21. :     kermit -l 6 -m unknown -Y -g xxx
  22. :     or
  23. :     kermit -b 19200 -l 6 -m unknown -Y -g xxx
  24. : kermit response is "Sorry, you must 'set speed' first". If I use
  25. :     kermit -l 6 -b 19200 -m unknown -Y -g xxx
  26. : the response is "unsupported transmission rate". I also tryed to use
  27. : some different init files (with -y option) but had no success.
  28. : I call kermit with the open descriptor, from a perl script which has to
  29. : handle login, menu, lookup for files, renaming ... on the remote host.
  30. : The remote host does not run Unix has an very limited version of kermit.
  31. Kermit's own script language could handle all this, too, probably easier
  32. and better than Perl script, but, to answer your question, Kermit assumes
  33. that when you invoke it with an open file descriptor, that the device
  34. (which could be anything, not just a tty port) has already been set up
  35. as desired and the connection has already been made.
  36.  
  37. Thus there is no need to include the "-m modem-type" option.  Try leaving
  38. it out.
  39.  
  40. - Frank